home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / misc / math / MathFX_src.lha / fxtext.c < prev    next >
C/C++ Source or Header  |  1995-12-20  |  273b  |  16 lines

  1. /* Switches back to text mode */
  2.  
  3. #include "mathfx.h"
  4.  
  5. void fxtext()
  6. {
  7.       int dev,term,gra,level;
  8.  
  9.       glev(&level);
  10.       if (level < 1) fatal("Please call FXSTAR before calling FXTEXT.");
  11.  
  12.       gdev(&dev,&term,&gra);
  13.       if (term != 0) beepw();
  14.       grtext();
  15. }
  16.